func runtime.sysAlloc
12 uses
runtime (current package)
heapdump.go#L730: p := sysAlloc(n, &memstats.other_sys)
malloc.go#L1496: return (*notInHeap)(sysAlloc(size, sysStat))
malloc.go#L1509: persistent.base = (*notInHeap)(sysAlloc(persistentChunkSize, &memstats.other_sys))
mem.go#L49: func sysAlloc(n uintptr, sysStat *sysMemStat) unsafe.Pointer {
mheap.go#L545: sp.array = sysAlloc(uintptr(n)*goarch.PtrSize, &memstats.other_sys)
mheap.go#L2241: result = (*gcBitsArena)(sysAlloc(gcBitsChunkBytes, &memstats.gcMiscSys))
mpagealloc.go#L404: r := sysAlloc(l2Size, p.sysStat)
mprof.go#L263: bh = (*buckhashArray)(sysAlloc(unsafe.Sizeof(buckhashArray{}), &memstats.buckhash_sys))
os_linux.go#L203: stack := sysAlloc(stacksize, &memstats.stacks_sys)
stack.go#L353: v := sysAlloc(uintptr(n), &memstats.stacks_sys)
trace.go#L1068: buf = traceBufPtr(sysAlloc(unsafe.Sizeof(traceBuf{}), &memstats.other_sys))
trace.go#L1455: block := (*traceAllocBlock)(sysAlloc(unsafe.Sizeof(traceAllocBlock{}), &memstats.other_sys))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |